Overload | Description |
---|---|
NBlocksStack<T> Constructor() | Default stack constructor |
NBlocksStack<T> Constructor(Int32) | Creates a new stack with the specified blocks size. |
NBlocksStack<T> Constructor(INIterator<T>) | Creates a new stack, which is initialized with the remaining items of the specified iterator. |
NBlocksStack<T> Constructor(INSet<T>) | Creates a new stack, which is initialized with the items of the specified set. |
NBlocksStack<T> Constructor(Int32,INIterator<T>) | Creates a new stack, with the specified block size and initialized with the remaining items of the specified iterator. |
NBlocksStack<T> Constructor(Int32,INSet<T>) | Creates a new stack, with the specified block size and initialized with the items of the specified set. |